home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / pcc12c.zip / STDIO.H < prev   
Text File  |  1988-11-29  |  358b  |  19 lines

  1. /*    STDIO.H        Include file for C88 input/output.    */
  2.  
  3. /*    a 'FILE' is simply an integer is this implimentation    */
  4.  
  5. typedef int  FILE;
  6.  
  7. /*    Standard input, standard output and standard error.    */
  8.  
  9. #define stdin    0
  10. #define stdout    1
  11. #define    stderr    2
  12. #define stdprn    4
  13.  
  14. #define    NULL    0
  15. #define TRUE    1
  16. #define FALSE    0
  17. #define EOF        (-1)
  18. #define ERR        (-1)
  19.